home *** CD-ROM | disk | FTP | other *** search
- /* %filename% -- window methods */
- /* Created %date% %time% by AppMaker */
-
- /* This module overrides the AppMaker-generated code in z%WindName%.% %*/
- /* It provides a place for you to add your own code and still be able to */
- /* generate code for new changes to the user interface. This module will */
- /* not be regenerated by AppMaker unless you delete it. Its superclass, */
- /* z%WindName%, may be regenerated to handle user interface changes% %*/
- /* without losing your hand-coded changes to this module. */
-
- #include <Commands.h>
- #include "ResourceDefs.h"
- #include "%WindName%.h"
-
- %for each item gen Make%
- /*----------*/
- void C%WindName%::DoCommand (long theCommand)
- {
- switch (theCommand) {
- default:
- inherited::DoCommand (theCommand);
- break;
- } /* switch */
-
- } /* DoCommand */
-
- /* %filename% */
-